{% extends "core/base.html" %} {% block title %} New Conversation {% endblock %} {% block content %}

New conversation

{% csrf_token %}
{{ form.as_p }}
{% if form.errors or form.non_field_errors %}
{% for field in form %} {{ field.errors }} {% endfor %} {{ form.non_field_errors }}
{% endif %}
{% endblock %}